servlets - meaning and definition. What is servlets
Diclib.com
Online Dictionary

What (who) is servlets - definition

JAKARTA EE PROGRAMMING LANGUAGE CLASS
Servlet; Servlets; Java servlets; Java Servlet API; JSR 154; Szervlet; The Java Servlet API; The Java Servlet; Java Servlets; Libservlet; Java Servlet; Javax.servlet; Java servlet; Jakarta servlet
  • JSP]] file

servlet         
Java servlet         
<World-Wide Web> (By analogy with "applet") A Java program that runs as part of a network service, typically an {HTTP server} and responds to requests from clients. The most common use for a servlet is to extend a web server by generating web content dynamically. For example, a client may need information from a database; a servlet can be written that receives the request, gets and processes the data as needed by the client and then returns the result to the client. Applets are also written in Java but run inside the JVM of a HTML browser on the client. Servlets and applets allow the server and client to be extended in a modular way by dynamically loading code which communicates with the main program via a standard programming interface. Servlets are more flexible than CGI scripts and, being written in Java, more portable. The spelling "servelet" is occasionally seen but JavaSoft spell it "servlet". There is no such thing as a "serverlet". servlet/">http://java.sun.com/products/servlet/. (2002-10-06)
Java Servlet Development Kit      
<World-Wide Web> (JSDK) A suite of software for easing the development of Java servlets. {servlet/">JavaSoft Servlet Development Kit (http://javasoft.com/products/jdk/1.2/docs/ext/servlet/)}. (1998-05-26)

Wikipedia

Jakarta Servlet

A Jakarta Servlet (formerly Java Servlet) is a Java software component that extends the capabilities of a server. Although servlets can respond to many types of requests, they most commonly implement web containers for hosting web applications on web servers and thus qualify as a server-side servlet web API. Such web servlets are the Java counterpart to other dynamic web content technologies such as PHP and ASP.NET.